Component org.nuxeo.ecm.platform.content.view.local.configuration
In bundle org.nuxeo.ecm.platform.types
Resolution Order
527
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.platform.content.view.local.configuration--schema
- org.nuxeo.ecm.platform.content.view.local.configuration--doctype
- org.nuxeo.ecm.platform.content.view.local.configuration--adapters
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.content.view.local.configuration">
<extension target="org.nuxeo.ecm.core.schema.TypeService"
point="schema">
<schema name="content_view_configuration" prefix="cvconf"
src="schemas/content_view_configuration.xsd" />
</extension>
<extension target="org.nuxeo.ecm.core.schema.TypeService"
point="doctype">
<facet name="ContentViewLocalConfiguration">
<schema name="content_view_configuration" />
</facet>
</extension>
<extension target="org.nuxeo.ecm.core.api.DocumentAdapterService"
point="adapters">
<adapter
class="org.nuxeo.ecm.platform.types.localconfiguration.ContentViewConfiguration"
factory="org.nuxeo.ecm.platform.types.localconfiguration.ContentViewConfigurationFactory" />
</extension>
</component>